Welcome![Sign In][Sign Up]
Location:
Search - delphi f

Search list

[GUI Develop换肤功能控件 f-ksen10

Description: delphi编程 换肤功能控件 f-ksen10-control function f-ksen10
Platform: | Size: 304334 | Author: E代君 | Hits:

[Documentsdelphi代码编写规范--中科版

Description: 自己写的代码规范,简短有力。 每个项目开头引用 FastMM4。 每个单元开头写上描述、作者、日期等信息 所有New(pointer)的地方IncMem,所有dispose(pointer)的地方DecMem。 所有从TObject继承过来的类改为从TAutoObject继承。 所有从TInterfacedObject继承的接口实现改为从TAutoInterfacedObject或TAutoUserInterfacedObject继承实现。 尽量多的注释。 局域变量非属性变量用"m_"打头命名,局域变量属性变量用"F"打头命名,临时变量用"L"打头命名。
Platform: | Size: 393 | Author: lovemoqi@163.com | Hits:

[Communication-Mobilekdvp16

Description: KDVoicePhone Toolkit开发工具可以使你的应用程序获得声音和电话方面的特性,如:a.. 打电话或回电话;b.. 如果对话已经在进行,可以中途接听;c.. 在电话线或声卡中回放和记录音频;d.. 从电话线中检测音频信号和脉冲信号;e.. 捕获呼叫方ID;f.. 可控制本机听筒,外部的麦克风和MODEM的外部喇叭;g.. 定时事件来跟踪回放和录音的过程;h.. 录音时可检测静音;-KDVoicePhone Toolkit development tools can make your application access to voice and telephone features, such as: a.. Call or return phone calls b.. If the dialogue already under way, you can receive half-way c.. In a telephone line or sound card in audio playback and recording d.. from the telephone line in the detection of audio signals and pulse signal e.. capture caller ID f.. can control the local handset, external microphones and MODEM external speakers g. . timing incident to track the process of playback and recording h.. recording can detect mute
Platform: | Size: 1662976 | Author: 站长 | Hits:

[Otherfft_source-delphi

Description: fft源代码,在delphi环境下开发的。没有密码,随意下。-FFT source code, developed in Delphi. No password, you can use it freely.
Platform: | Size: 24576 | Author: wwz | Hits:

[GUI Develop换肤功能控件 f-ksen10

Description: delphi编程 换肤功能控件 f-ksen10-control function f-ksen10
Platform: | Size: 304128 | Author: E代君 | Hits:

[Compress-Decompress algrithmsDelphiZLib.123

Description: The zlibex.pas unit included in this archive will work with delphi 5, 6,and 7. if you previously downloaded my delphi 5 unit, you will notice that the unit has been renamed. this was done because borland included in its delphi 6 and 7 lib directories a zlib.dcu file and i felt it was more correct to rename my unit and force developers to have to update their code than to make developers worry about the possible file contention in delphi 6 and 7.-The zlibex.pas unit included in this Archi ve will work with Delphi 5, 6, and 7. if you previously downloaded my delphi five u nit. you will notice that the unit has been renamed. t his was done because borland included in its del Delphi 6 and 7 lib directories zlib.dcu a file and i f ELT it was more correct to rename my unit and forc e developers to have to update their code than to make developers worry about the possible file c delphi ontention in 6 and 7.
Platform: | Size: 191488 | Author: 江焱风 | Hits:

[OpenGL programOpenGL_A8

Description: A lot of people asked me, "So how do i put it all together?" I have taken some of the other tutorials and created this piece of eye candy. It uses slightly modified versions of the Bouncing Ball and Water Ripple tutorials.-A lot of people asked me, "So how do i put it all together," I have taken some of the other tutorials and created this piece of eye candy. It uses slightly modified versions o f the Bouncing Ball and Water Ripple tutorials.
Platform: | Size: 111616 | Author: 古洪 | Hits:

[Delphi VCLObjectInspector

Description: bject Inspector is a component suite that contains inspectors allowing you to change anything in your application at runtime. Object Inspector suite includes: TPropertyInterface component for easy access to any property or event of any component at runtime TComponentInspector customizable full-functional runtime object inspector control TComponentComboBox control for easy selecting component TCommonInspector abstract inspector control for inspect anything in your application TDBInspector ready-to-use database inspector control TIniInspector ready-to-use ini-file inspector control TApplicationInspector ready-to-use inspector control for changing Application properties at runtime TSystemColorsInspector ready-to-use inspector control for changing Windows colors Examples small and clean projects illustrating features of inspectors and TPropertyInterface components Source codes full source code of all components and useful internal classes -bject Inspector is a component suite that c ontains inspectors allowing you to change anyt hing in your application at runtime. Object Ins pector suite includes : TPropertyInterface component for easy access to any property or event of any component at runt ime TComponentInspector customizable full-f unctional runtime object inspector control TC omponentComboBox control for easy selecting c omponent TCommonInspector abstract inspecto r control for inspect anything in your applicat ion TDBInspector ready-to-use database inspe Hector control TIniInspector ready-to-use ini- file inspector control TApplicationInspecto r ready-to-use inspector control for changing Application properties at runtime TSystemCol orsInspector ready-to-use control inspector Windows for changing colors Examples small
Platform: | Size: 429056 | Author: sad | Hits:

[Delphi VCLnotblack_DllClass

Description: 嘿嘿,大侠看到不要见笑呀... 大家都知道使用DLL的好处.于是我就想把FORM封装到DLL里面去. 到网上找,发现是MDI和模式窗体的,非模式的也有很多问题.便想自己解决这个问题. 原来是用DLL创建一个对象返回,但发现有很多的问题. 想了半天就去寻根问柳吧. 找到了类. 我就想把类封装进DLL,到时简单的返回一个类,然后在主程序里操作不就简单了? 找了半天发现了TFormClass,于是试了试从DLL导出来,像一般的程序一样创建窗体发现成功. 接着我又想看看其他的类是不是也能这样,就拿TFrame来实验. function GetDllFrameClass():TFrame stdcall 第一次是这样声明的,失败.奇怪?! 试了好多次都不行,就想到了TFormClass(Ctrl+左键),进去看看,发现是这样声明的. TFormClass = class of TForm 哎呀,恍然大悟!! class(TFrame) 是声明一个类, 这个类继承了TFrame类 f: TFrame 是一个对象 class of TFrame 声明的是类类型, f:TFrameClass 是一个类. function GetDllFrameClass():TFrame 返回就不是类而是对象了,照TFormClass修改后TFrameClass = class of TFrame 运行...成功,
Platform: | Size: 64512 | Author: | Hits:

[Delphi VCLdelphi-ftp

Description: delphi编写的简单FTP程序,可实现文件上传下载的功能-delphi prepared a simple FTP program can realize the function of uploading files to download
Platform: | Size: 279552 | Author: abo | Hits:

[Othersetupbasepack80_D6

Description: SDL Component suite for D6 SDL 组建是一套支持科学和工程计算的工业控件集,有10万行源码,50个例程. 3D 数据, 3D 数据,地图集,原子符号,β函数的情节的旋转,校验扫描的图像, CAS 登记号码,图表,颜色选择, 常量和兑换率,轮廓绘制,化学结构,化学数据,化学公式,X分配,群聚,转换程序,曲线适合, 地理数据,基体,图解,目录,配给,矩阵标签, eigenvectors, F-分布, FFT( 快速傅里叶变换) 小圆点的决定因素的数据库, 先进先出,文件和磁盘进入,γ函数,地理地图集,地理地图,坡度填补, grep,同位素, Kohonen 神经网络, KNN( k 最近邻) ,标签开动网络浏览程序,列举意见,地图,数学,矩阵,仪表展示, MLR( 多线性回归), 分子公式,神经网络,正规分布,数值的输入,数字标签,数字桌子编辑程序,元素周期表,极地的图解, PCA( 主成分分析),发展酒吧,配给,随便发电机,回归, RLE( 行程编码),数据的轮流的quantiles, 科学图表, scrollable 展示,清除,花键,棋盘式分照表,统计,溪,线矩阵,串处理技术,数据的表面情节, SVD( sigular 估价分解), t 分配,价电子,矢量,数据, VU 米的形象化
Platform: | Size: 436224 | Author: ddl | Hits:

[Othersetup_mathpack80_D6

Description: SDL Component suite for D6 SDL 组建是一套支持科学和工程计算的工业控件集,有10万行源码,50个例程. 3D 数据, 3D 数据,地图集,原子符号,β函数的情节的旋转,校验扫描的图像, CAS 登记号码,图表,颜色选择, 常量和兑换率,轮廓绘制,化学结构,化学数据,化学公式,X分配,群聚,转换程序,曲线适合, 地理数据,基体,图解,目录,配给,矩阵标签, eigenvectors, F-分布, FFT( 快速傅里叶变换) 小圆点的决定因素的数据库, 先进先出,文件和磁盘进入,γ函数,地理地图集,地理地图,坡度填补, grep,同位素, Kohonen 神经网络, KNN( k 最近邻) ,标签开动网络浏览程序,列举意见,地图,数学,矩阵,仪表展示, MLR( 多线性回归), 分子公式,神经网络,正规分布,数值的输入,数字标签,数字桌子编辑程序,元素周期表,极地的图解, PCA( 主成分分析),发展酒吧,配给,随便发电机,回归, RLE( 行程编码),数据的轮流的quantiles, 科学图表, scrollable 展示,清除,花键,棋盘式分照表,统计,溪,线矩阵,串处理技术,数据的表面情节, SVD( sigular 估价分解), t 分配,价电子,矢量,数据, VU 米的形象化
Platform: | Size: 551936 | Author: ddl | Hits:

[Othersetup_chempack80_D6

Description: SDL Component suite for D6 SDL 组建是一套支持科学和工程计算的工业控件集,有10万行源码,50个例程. 3D 数据, 3D 数据,地图集,原子符号,β函数的情节的旋转,校验扫描的图像, CAS 登记号码,图表,颜色选择, 常量和兑换率,轮廓绘制,化学结构,化学数据,化学公式,X分配,群聚,转换程序,曲线适合, 地理数据,基体,图解,目录,配给,矩阵标签, eigenvectors, F-分布, FFT( 快速傅里叶变换) 小圆点的决定因素的数据库, 先进先出,文件和磁盘进入,γ函数,地理地图集,地理地图,坡度填补, grep,同位素, Kohonen 神经网络, KNN( k 最近邻) ,标签开动网络浏览程序,列举意见,地图,数学,矩阵,仪表展示, MLR( 多线性回归), 分子公式,神经网络,正规分布,数值的输入,数字标签,数字桌子编辑程序,元素周期表,极地的图解, PCA( 主成分分析),发展酒吧,配给,随便发电机,回归, RLE( 行程编码),数据的轮流的quantiles, 科学图表, scrollable 展示,清除,花键,棋盘式分照表,统计,溪,线矩阵,串处理技术,数据的表面情节, SVD( sigular 估价分解), t 分配,价电子,矢量,数据, VU 米的形象化
Platform: | Size: 335872 | Author: ddl | Hits:

[GUI Developkeyhook

Description: 该Dephi例子演示在程序中如何设定富于个性的热键,例如F+J.-Delphi example of the demonstration in the procedure how to set up wealth to the personality of the hotkey, for example, F+ J.
Platform: | Size: 206848 | Author: jerry | Hits:

[Delphi VCLtresss_myhotkey

Description: 用Delphi6写的演示在程序中如何设定富于个性的热键,例如F+J.-Delphi6 written presentation with in the procedure how to set up wealth to the personality of the hotkey, for example, F+ J.
Platform: | Size: 158720 | Author: jerry | Hits:

[OtherDelphi

Description: 利用花指令扰乱Cracker,以达到保护软件的作用。 本工具可以自定义花指令,有三种模式,如下: 1、随机插入花指令 2、指定插入固定的花指令 3、全部插入花指令 使用方法: 1、请自行在 JunkData.mdb 数据库中添加花指令 2、在您要放花指令的地方写:{$F Junk} 3、{$F Junk} 为花指令标记 4、用本工具处理后,重新编译即可。-Disrupt the use of junk code Cracker, in order to achieve the role of protection software. This tool can customize the junk code, there are three modes, as follows: 1, randomly insert junk code 2, the designated fixed insert junk code 3, the full insert junk code to use: 1, your own database in JunkData.mdb add junk code 2, in the command you want to put flowers where to write: ($ F Junk) 3, ($ F Junk) tag for flower orders 4, after treatment with this tool, you can re-compile.
Platform: | Size: 711680 | Author: 长毛 | Hits:

[Delphi VCLfft_delphi.ZIP

Description: Delphi FFT Spectrum Analyzer
Platform: | Size: 402432 | Author: yoonsik | Hits:

[Delphi VCLBS1_SmallBussines_Source_v1.1.ZIP

Description: BS1 Accounting for small businesses for Delphi F/S
Platform: | Size: 1413120 | Author: honeywell | Hits:

[OtherFinBox3.5.1.ZIP

Description: F-IN-BOX, Delphi Edition is a Delphi component to enhance Macromedia Flash
Platform: | Size: 5702656 | Author: Dung | Hits:

[Delphi/CppBuilderDelphi---Delphi-Component-Writers-Guide--Delphi-f

Description: Delphi Component Writer s Guide- Delphi for Windows
Platform: | Size: 609280 | Author: Amir | Hits:
« 12 3 »

CodeBus www.codebus.net